home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK2.toast / Development Kits (Disc 2) / QuickTime™ IC SDK 1.01 / Sample Code / QTICSampleApp / Headers / application.h next >
Encoding:
Text File  |  1997-06-06  |  1.4 KB  |  51 lines  |  [TEXT/CWIE]

  1. //========================================================================
  2. // Application:        QTICSampleApp
  3. //
  4. // Description:        This application demonstrates the integration of
  5. //                    QuickTime™ IC functionality.
  6. //
  7. // Author:            Mike Bitz
  8. //                     Developer Technical Support
  9. //                     Apple Computer, Inc.
  10. //
  11. // History:            25-Apr-97 original development (mwb)
  12. //
  13. // Copyright © 1997 Apple Computer, Inc., All Rights Reserved
  14. //
  15. // You may incorporate this sample code into your applications without
  16. // restriction, though the sample code has been provided "AS IS" and the
  17. // responsibility for its operation is 100% yours.  However, what you are
  18. // not permitted to do is to redistribute the source as "DSC Sample Code"
  19. // after having made changes. If you're going to re-distribute the source,
  20. // we require that you make it clear in the source that the code was
  21. // descended from Apple Sample Code, but that you've made changes.
  22. //========================================================================
  23.  
  24.  
  25. #define        kMasterBlockSize            0x0800    //    We create one MoreMaster block of this size.
  26.  
  27. enum
  28. {
  29.     kBaseResID = 128,
  30.  
  31.     menuApple = kBaseResID,
  32.     itemAboutQTIC = 1,
  33.     itemAboutSampleApp = 2,
  34.     
  35.     menuFile = kBaseResID + 1,
  36.     itemSelectCamera = 1,
  37.     itemDisplayMainPanel = 2,
  38.     itemCloseWindow = 3,
  39.     itemQuit = 5,
  40.  
  41.     menuEdit = kBaseResID + 2,
  42.     itemUndo = 1,
  43.     itemCut = 3,
  44.     itemCopy = 4,
  45.     itemPaste = 5,
  46.     itemClear = 6,
  47.     
  48.     menuPanels = kBaseResID + 3,
  49.     
  50.     menuTemp = kBaseResID + 4
  51. };